home *** CD-ROM | disk | FTP | other *** search
- package com.sun.java.swing.plaf.basic;
-
- import com.sun.java.swing.event.ListDataEvent;
- import com.sun.java.swing.event.ListDataListener;
-
- class BasicComboBoxUI$ComboBoxListDataListener implements ListDataListener {
- // $FF: synthetic field
- BasicComboBoxUI this$0;
-
- public void contentsChanged(ListDataEvent e) {
- this.this$0.isMinimumSizeDirty = true;
- }
-
- public void intervalAdded(ListDataEvent e) {
- this.contentsChanged(e);
- }
-
- public void intervalRemoved(ListDataEvent e) {
- this.contentsChanged(e);
- }
-
- // $FF: synthetic method
- BasicComboBoxUI$ComboBoxListDataListener(BasicComboBoxUI this$0) {
- this.this$0 = this$0;
- }
- }
-